From: Jim Blandy Date: Thu, 11 Mar 1993 07:18:15 +0000 (+0000) Subject: * unexec.c (copy_text_and_data): Error message tweaked. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96935 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8116bbb0437fdb522e7f4948994da808fc89237b;p=emacs.git * unexec.c (copy_text_and_data): Error message tweaked. --- diff --git a/src/unexec.c b/src/unexec.c index bd6985a349b..2fb289d8fba 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -808,7 +808,7 @@ copy_text_and_data (new, a_out) { n = size > sizeof (page) ? sizeof (page) : size; if (read (a_out, page, n) != n || write (new, page, n) != n) - PERROR ("xemacs"); + PERROR ("emacs"); } lseek (a_out, old_a_out_ptr, 0); }